home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / segheap.zip / SEGHEAP.H < prev   
C/C++ Source or Header  |  1992-02-16  |  452b  |  14 lines

  1. /* Include file for the SEGHEAP library     */
  2. /* Copyright (C) Stephen Chung, 1992.       */
  3. /* All rights reserved.                     */
  4.  
  5.  
  6. extern void far *SegHeapAlloc (unsigned int);
  7. extern void SegHeapFree (void far *);
  8. extern void far *SegHeapRealloc (void far *, unsigned int);
  9. extern void MemoryStatistics (long int *, long int *);
  10. extern void FreeAllMemory (void);
  11. #ifdef DEBUG
  12. extern void PrintMemoryChains(void);
  13. #endif DEBUG
  14.